home *** CD-ROM | disk | FTP | other *** search
/ The 50th Anniversary of …National Assembly Library / The 50th Anniversary of the National Assembly Library.iso / main.dxr / 00045.ls < prev    next >
Encoding:
Text File  |  2002-02-18  |  316 b   |  22 lines

  1. on mouseEnter
  2.   cursor([121, 122])
  3.   repeat with aa = 48 to 126
  4.     set the locH of sprite 42 to aa
  5.   end repeat
  6.   sprite(43).visible = 1
  7. end
  8.  
  9. on mouseLeave
  10.   cursor(-1)
  11.   sprite(43).visible = 0
  12.   repeat with aa = 126 down to 48
  13.     set the locH of sprite 42 to aa
  14.   end repeat
  15. end
  16.  
  17. on mouseDown
  18. end
  19.  
  20. on mouseUp
  21. end
  22.